home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / dolmorph / src / yalert.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-07  |  1.1 KB  |  54 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <winb.h>
  5. #include <te.h>
  6. #include <fntb.h>
  7. #include <gui.h>
  8.  
  9. int    idAlertDlg = -1 ;
  10. int    idAlertIcon = -1 ;
  11. int    idAlertTitleMsg = -1 ;
  12. int    idAlertOkDBtn = -1 ;
  13. int    idAlertMsg[3] = -1 ;
  14. int    idCheckAlertDlg = -1 ;
  15. int    idCheckAlertIcon = -1 ;
  16. int    idCheckAlertTitleMsg = -1 ;
  17. int    idCheckAlertMsg[3] = -1 ;
  18. int    idCheckAlertOkDBtn = -1 ;
  19. int    idCheckAlertCancelDBtn = -1 ;
  20.  
  21. /*    initDataZALERT:idAlertOkDBtn:MJ_DBUTTONL40の呼び出し関数    */
  22. int    AlertOkDBtnFunc(kobj, messId, argc, pev, trigger)
  23. int        kobj ;
  24. int        messId ;
  25. int        argc ;
  26. EVENT    *pev ;
  27. int        trigger ;
  28. {
  29.     return NOERR ;
  30. }
  31.  
  32. /*    initDataZALERT:idCheckAlertOkDBtn:MJ_DBUTTONL40の呼び出し関数    */
  33. int    CheckAlertOkDBtnFunc(kobj, messId, argc, pev, trigger)
  34. int        kobj ;
  35. int        messId ;
  36. int        argc ;
  37. EVENT    *pev ;
  38. int        trigger ;
  39. {
  40.     return NOERR ;
  41. }
  42.  
  43. /*    initDataZALERT:idCheckAlertCancelDBtn:MJ_DBUTTONL40の呼び出し関数    */
  44. int    CheckAlertCancelDBtnFunc(kobj, messId, argc, pev, trigger)
  45. int        kobj ;
  46. int        messId ;
  47. int        argc ;
  48. EVENT    *pev ;
  49. int        trigger ;
  50. {
  51.     return NOERR ;
  52. }
  53.  
  54.